const crypto/sha1.chunk

11 uses

	crypto/sha1 (current package)
		sha1.go#L30: 	chunk = 64
		sha1.go#L41: 	x   [chunk]byte
		sha1.go#L48: 	marshaledSize = len(magic) + 5*4 + chunk + 8
		sha1.go#L80: 	d.nx = int(d.len % chunk)
		sha1.go#L125: 		if d.nx == chunk {
		sha1.go#L131: 	if len(p) >= chunk {
		sha1.go#L132: 		n := len(p) &^ (chunk - 1)
		sha1.go#L202: 	for i := byte(0); i < chunk; i++ {
		sha1.go#L228: 	for i := byte(0); i < chunk; i++ {
		sha1block.go#L24: 	for len(p) >= chunk {
		sha1block.go#L79: 		p = p[chunk:]